home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Games / Pentominoes 2.0 / Shell ƒ / graphics dispatch.c < prev    next >
Encoding:
Text File  |  1995-07-22  |  10.4 KB  |  28 lines  |  [TEXT/MMCC]

  1. atch(WindowRef theWindow)
  2. {
  3.     #pragma unused(theWindow)
  4.     
  5.     return kFailure;
  6. }
  7.  
  8. DispatchError PasteDispatch(WindowRef theWindow)
  9. {
  10.     #pragma unused(theWindow)
  11.     
  12.     return kFailure;
  13. }
  14.  
  15. DispatchError ClearDispatch(WindowRef theWindow)
  16. {
  17.     #pragma unused(theWindow)
  18.     
  19.     return kFailure;
  20. }
  21.  
  22. DispatchError SelectAllDispatch(WindowRef theWindow)
  23. {
  24.     #pragma unused(theWindow)
  25.     
  26.     return kFailure;
  27. }
  28.